home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 8915 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  917 b 

  1. Path: dispatch.news.demon.net!demon!farlight.demon.co.uk
  2. From: j shipley <jonathan@farlight.demon.co.uk>
  3. Newsgroups: comp.lang.c
  4. Subject: Convert a float to an int  ( and round up/down ? )
  5. Date: Thu, 07 Mar 1996 01:39:23 GMT
  6. Message-ID: <826162763.17141@farlight.demon.co.uk>
  7. NNTP-Posting-Host: farlight.demon.co.uk
  8. X-NNTP-Posting-Host: farlight.demon.co.uk
  9. X-Mailer: Mozilla 1.1N (Windows; I; 16bit)
  10. MIME-Version: 1.0
  11. Content-Transfer-Encoding: 7bit
  12. Content-Type: text/plain; charset=us-ascii
  13.  
  14. I am trying to convert a variable of type float to an int.
  15.  
  16. How can this be done?
  17.  
  18. I have tried     (int) variable
  19. i.e what I thought a cast was, but it does not work.
  20.  
  21. Part 2:
  22.  
  23. Can I round a float up/down to the nearest number?
  24. Does a cast do the same as using the modulus operator, %? (in this case).
  25.  
  26.  
  27.  
  28. I am using Borland C 3.1, and A Book On C (Kelly/Pohl) - neither of which 
  29. has informed me.
  30.  
  31. Thanks for your help.
  32.  
  33.